diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/po/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/po/page.tsx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/[lng]/evcp/(evcp)/po/page.tsx b/app/[lng]/evcp/(evcp)/po/page.tsx index 7868e231..cd23ff0e 100644 --- a/app/[lng]/evcp/(evcp)/po/page.tsx +++ b/app/[lng]/evcp/(evcp)/po/page.tsx @@ -8,7 +8,7 @@ import { Shell } from "@/components/shell" import { getPOs } from "@/lib/po/service" import { searchParamsCache } from "@/lib/po/validations" import { PoListsTable } from "@/lib/po/table/po-table" - +import { InformationButton } from "@/components/information/information-button" interface IndexPageProps { searchParams: Promise<SearchParams> @@ -33,9 +33,12 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight"> - PO 확인 및 전자서명 - </h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight"> + PO 확인 및 전자서명 + </h2> + <InformationButton pageCode="evcp/po" /> + </div> <p className="text-muted-foreground"> 기간계 시스템으로부터 PO를 확인하고 협력업체에게 전자서명을 요청할 수 있습니다. 요쳥된 전자서명의 이력 또한 확인할 수 있습니다. |
